IdeaBlade.Core Assembly > IdeaBlade.Core Namespace > PropertyInterceptor<TInstance,TValue,TArgs> Class : AddSkipKey Method |
'Usage
Dim instance As PropertyInterceptor(Of TInstance,TValue,TArgs) Dim key As String instance.AddSkipKey(key)
public void Sample() { DomainModelEntityManager mgr = DomainModelEntityManager.DefaultManager; Customer c1 = mgr.Customers.First(); // Look at all before set actions affecting customer company name foreach (var action in Customer.CompanyNameEntityProperty.SetterInterceptor.GetActions(PropertyInterceptorTiming.Before, typeof(Customer))) { Console.WriteLine(action.Key + " = " + action.Order); } // Skip an action Customer.CompanyNameEntityProperty.SetterInterceptor.AddSkipKey("A"); // Set property - output window will show which actions were performed. c1.CompanyName = "Boxes n Things"; // Now include the skipped action. Customer.CompanyNameEntityProperty.SetterInterceptor.RemoveSkipKey("A"); // Set property - we should see all actions invoked. c1.CompanyName = "Boxes n Stuff"; } public partial class Customer { [BeforeSet(Key = "A")] public void BeforeSetAnyCustomerProperty(IEntityPropertySetInterceptorArgs args) { Console.WriteLine("Customer any - before setting " + args.EntityProperty.Name); } [BeforeSet("CompanyName", Key = "B")] public void BeforeSetCompanyName(IEntityPropertySetInterceptorArgs args) { Console.WriteLine("Customer companyname - before setting company name"); } }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2